home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / COMMADIO / KERMIT1.LZH / PCKGET.BAS < prev    next >
BASIC Source File  |  1980-01-01  |  2KB  |  51 lines

  1. 5  ' Run this program on the PC in conjunction with a Fortran program on the
  2. 6  ' mainframe to get Kermit to the PC
  3. 7  ' Daphne Tzoar , January 1983
  4. 8  ' Columbia University Center for Computing Activities
  5. 9  '
  6. 10 OPEN "com1:4800,n,8,1" AS #1        ' Clear the port status.
  7. 20 CLOSE #1
  8. 30 OPEN "com1:4800,n,8,1,cs,ds,cd" AS #1
  9. 40 OPEN "KERMIT.EXE" FOR OUTPUT AS #2
  10. 50 OK$ = "ok"
  11. 60 PRINT#1,OK$           ' Tell host we're ready for data
  12. 70 X$=INPUT$(65,#1)        ' Data plus semi-colon
  13. 80 VALUE$ = LEFT$(X$,1)      'First char of input
  14. 90 VALUE = ASC(VALUE$)
  15. 100 IF VALUE = 64 OR VALUE = 192 GOTO 430    ' @ means we're done
  16. 110 IF VALUE >= 160 AND VALUE <= 175 THEN GOTO 140   ' Kill all illegal chars
  17. 120 IF VALUE >= 32 AND VALUE <= 47 THEN GOTO 140
  18. 130 X$ = MID$(X$,2) : GOTO 80
  19. 140 IF VALUE <> 174 GOTO 210     ' Not a dot (for read) - don't worry
  20. 150 TWO$ = MID$(X$,2,1)          ' Look at char after the dot.
  21. 160 TWO = ASC(TWO$)
  22. 170 IF TWO >= 160 AND TWO <= 175 THEN GOTO 210    ' It's ok.
  23. 180 IF TWO >= 32 AND TWO <= 47 THEN GOTO 210
  24. 190 X$ = MID$(X$,3)        ' Kill the char
  25. 200 GOTO 80
  26. 210 SIZ = LEN(X$)           ' How much input was actual data
  27. 220 READIN = 65 - SIZ
  28. 230 XTWO$=INPUT$(READIN,#1)     ' Get rest of data
  29. 240 X$ = X$ + XTWO$ : X$ = LEFT$(X$,64)
  30. 250 PRINT X$         ' Optional - use this line to follow the transmission
  31. 260 GOSUB 290
  32. 270 PRINT#2,X$;      ' Put data to the file.
  33. 280 GOTO 60
  34. 290 ' GET TWO CHARS, SUBTRACT SPACE (20 HEX) FROM EACH, AND COMBINE
  35. 300 ' TO ONE DIGIT.
  36. 310 FOR A = 1 TO 32
  37. 320 Y$ = MID$(X$,A,1)
  38. 330 Z$ = MID$(X$,A+1,1)
  39. 340 YNUM = ASC(Y$) : ZNUM = ASC(Z$)
  40. 350 IF YNUM > 127 THEN YNUM = YNUM - 128    ' Turn off hi bit if on
  41. 360 IF ZNUM > 127 THEN ZNUM = ZNUM - 128
  42. 370 YNUM = YNUM -32 : ZNUM = ZNUM -32       ' Subtract the space
  43. 380 XNUM = (16 * YNUM) +ZNUM
  44. 390 NEWCHR$ = CHR$(XNUM)
  45. 400 X$ = MID$(X$,1,A-1) + NEWCHR$ + MID$(X$,A+2)
  46. 410 NEXT A
  47. 420 RETURN
  48. 430 PRINT  " [All done.]"
  49. 440 CLOSE #1,#2                            ' Clean up.
  50. 450 END
  51.